home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/perl
- #
- # Generated by HTML Notepad V2.0 1996
- # To be found at www.cranial.com/software/htmlnote
- # Go on admit it, you are impressed!
-
- #subroutine for printing out HTML
- sub html_out {
- print "<html>\n";
- print "<head>\n";
- print "<meta http-equiv="generator" content="HTML Notepad v2.0">\n";
- print "<meta http-equiv="author" content="Adam Fraser, Cranial Publishing">\n";
- print "<link rev="made" href="mailto:adam@cranial.demon.co.uk">\n";
- print "<title>Hello World</title>\n";
- print "</head>\n";
- print "<body>\n";
- print "<p>Hello World</p>\n";
- print "</body>\n";
- print "</html>\n";
- print "\n";
- }
-
-
- #main sequence
- print "Content-type : text/html\n\n";
- &html_out;
- #end script
-